home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 19
/
Amiga Format CD19 (1997-10-02)(Future Publishing)(GB)(Track 1 of 5)[!][issue 1997-11].iso
/
-seriously_amiga-
/
shareware
/
sound
/
superplay
/
superplay-lib_usr
/
install_splib
< prev
next >
Wrap
Text File
|
1997-08-18
|
1KB
|
52 lines
; $VER: Install_SPLib V6.1 (22.1.97)
; © 1994-97 by Andreas R. Kleinert.
; This is the Installer Script for superplay.library V6+
(set #cpu (database "cpu"))
(set @app-name "SuperPlay-Library")
(makedir "ENV:SuperPlay-Library")
(makedir "ENVARC:SuperPlay-Library")
(copylib
(prompt "Installing superplay.library to LIBS: ...")
(help @copylib-help)
(source "libs/superplay.library")
(set #splibdest
(askdir
(prompt "Library Path")
(help @askdir-help)
(newpath)
(default "LIBS:")
)
)
(dest #splibdest)
)
(set #spobjdest (tackon #splibdest "spobjects"))
(makedir #spobjdest)
(copyfiles
(prompt "Installing spobjects to LIBS:spobjects ...")
(help @copyfiles-help)
(source "libs/spobjects")
(dest (tackon #splibdest "spobjects"))
(pattern "#?")
(confirm)
(files)
)
(if (>= #cpu 68020)
(
(copyfiles
(prompt "Installing special 68020+ versions of some spobjects");
(help @copyfiles-help)
(source "libs/68030")
(dest #splibdest)
(confirm)
(all)
)
)
)